home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amos / amossible / probs < prev    next >
Encoding:
Text File  |  1980-05-17  |  1.5 KB  |  41 lines

  1.             ERRORS,BUGS AND PROBLEMS ENCOUNTERED
  2.  
  3.  
  4. This small file is a compilation of a few solutions to the many annoying
  5. little probems in AMOS.
  6.  
  7.  
  8. Unfortunately,you can't load animations created in paint packages like
  9. "Deluxe Paint 3" into AMOS unless you have "AMOS Professional".
  10.  
  11. Sometimes sprites go all funny and don't come out in the colours you defined
  12. them-Even if you used the "Get Sprite Palette" command-Here is a routine
  13. that supposedly fixes this problem:
  14. For I=0 to 15
  15. C=Colour(I)
  16. Colour 15+I,C
  17. Next I
  18.  
  19.  
  20. When using the AMOS compiler,it reports that you have not tested the
  21. program-If you have tested the program and nothing was wrong,we'll tell you
  22. why:The AMOS compiler is STUPID!!!There have been many times when I've tried
  23. to compile a program that works fine,but the compiler doesn't think so-This
  24. is sometimes caused if you use AMAL-Try writing "Amal On" to turn all Amal
  25. channels on if you turned each one on seperately or vice versa-Yes,it sounds
  26. stupid,but it sometimes works.
  27.  
  28. I/O Error reported-You've tried to load/save in a file from disk but haven't
  29. used the correct settings or commands-Look back in your AMOS manuals for
  30. loading the type of file you want.
  31.  
  32. "Out of Stack Space"-You keep sending AMOS to a subroutine or procedure to
  33. fast for the computer to be able to cope-So introduce the "Wait" command to
  34. slow things down a little-Try taking it out if the program gets bigger.
  35.  
  36. "Syntax Error"-If you have typed something incorrectly,added to much or
  37. missed something out,AMOS will tell you-Look back in your manual to see what
  38. you should have typed.
  39.  
  40.  
  41.